Sets an Icon in the Panel.
#Include <GuiStatusBar.au3>
_GUICtrlStatusBarSetIcon($StatusBar, $i_part, $szIconFile, $iconID)
Parameters
$h_StatusBar | Handle to statusbar |
$i_part | Nubmer of panel to add icon too |
$s_IconFile | file to extract icon from |
$i_iconID | id of the icon |
Return Value
Returns nonzero if successful, or zero otherwise.
Remarks
None.
Related
_GUICtrlStatusBarGetIcon
Example
opt("MustDeclareVars", 1)
#include <GUIConstants.au3>
#Include <GuiStatusBar.au3>
Local $gui, $StatusBar1, $msg
Local $a_PartsRightEdge[3] = [100, 350, -1]
Local $a_PartsText[3] = ["New Text", "More Text", "Even More Text"]
$gui = GUICreate("Status Bar Set Icon", 500, -1, -1, -1, $WS_SIZEBOX)
$StatusBar1 = _GUICtrlStatusBarCreate ($gui, $a_PartsRightEdge, $a_PartsText)
_GUICtrlStatusBarSetIcon($StatusBar1, 1, "shell32.dll", 168)
_GUICtrlStatusBarSetIcon($StatusBar1, 0, "shell32.dll", 21)
_GUICtrlStatusBarSetIcon($StatusBar1, 2, "shell32.dll", 24)
GUISetState(@SW_SHOW)
While 1
$msg = GUIGetMsg()
Select
Case $msg = $GUI_EVENT_RESIZED
_GUICtrlStatusBarResize ($StatusBar1)
Case $msg = $GUI_EVENT_CLOSE
ExitLoop
Case Else
;;;;;
EndSelect
WEnd